public class Document extends Object
Classe Java per document complex type.
Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
<complexType name="document">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="idDocument" type="{http://www.w3.org/2001/XMLSchema}string" form="unqualified"/>
<element name="documentDate" type="{http://www.w3.org/2001/XMLSchema}date" form="unqualified"/>
<element name="binaryName" type="{http://www.w3.org/2001/XMLSchema}string" form="unqualified"/>
<element name="binaryContent" type="{http://www.w3.org/2001/XMLSchema}base64Binary" form="unqualified"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected byte[] |
binaryContent |
protected String |
binaryName |
protected LocalDate |
documentDate |
protected String |
idDocument |
| Constructor and Description |
|---|
Document() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
getBinaryContent()
Recupera il valore della proprietà binaryContent.
|
String |
getBinaryName()
Recupera il valore della proprietà binaryName.
|
LocalDate |
getDocumentDate()
Recupera il valore della proprietà documentDate.
|
String |
getIdDocument()
Recupera il valore della proprietà idDocument.
|
void |
setBinaryContent(byte[] value)
Imposta il valore della proprietà binaryContent.
|
void |
setBinaryName(String value)
Imposta il valore della proprietà binaryName.
|
void |
setDocumentDate(LocalDate value)
Imposta il valore della proprietà documentDate.
|
void |
setIdDocument(String value)
Imposta il valore della proprietà idDocument.
|
String |
toString()
Generates a String representation of the contents of this type.
|
protected String idDocument
protected LocalDate documentDate
protected String binaryName
protected byte[] binaryContent
public String getIdDocument()
Stringpublic void setIdDocument(String value)
value - allowed object is
Stringpublic LocalDate getDocumentDate()
Stringpublic void setDocumentDate(LocalDate value)
value - allowed object is
Stringpublic String getBinaryName()
Stringpublic void setBinaryName(String value)
value - allowed object is
Stringpublic byte[] getBinaryContent()
public void setBinaryContent(byte[] value)
value - allowed object is
byte[]Copyright © 2024. All rights reserved.